BRIX Templates
Update articles for BRIX Templates with AI

[INSERT_ARTICLE_TITLE]

Published: [INSERT_PUBLICATION_DATE]
Updated: [INSERT_UPDATE_DATE]
[INSERT_TOTAL_CHANGES] changes

[INSERT_UPDATE_SUMMARY]

List of Changes
Change 1 Pricing Overview — Full Section Rewrite
Old

Understanding Webflow Pricing

Webflow offers four site plans starting at $14/month. The pricing structure is relatively straightforward, though there are some important nuances to consider before choosing a plan.

Available Plans

The plans are broken down as follows:

  • Basic — For simple sites with up to 150 pages
  • CMS — Adds blog and dynamic content features
    • Includes 2,000 CMS items
    • 3 content editors
  • Business — For larger sites with more bandwidth

To check your current plan, navigate to Settings > Billing in your Webflow dashboard. You can also use the Webflow API to query it programmatically.

Tip: If you're on an annual plan, you can save up to 30% compared to monthly billing.

GET https://api.webflow.com/v2/sites/{site_id}
Authorization: Bearer YOUR_API_TOKEN
Webflow pricing plans overview showing available tiers and features
New

Webflow Pricing in 2026: Complete Breakdown

As of February 2026, Webflow has restructured its pricing into five site plans with significant changes to bandwidth limits and CMS item caps. The new structure is more granular but offers substantially better value at each tier.

Updated Plan Lineup

The 2026 pricing tiers are:

  1. Free — 1 page, webflow.io subdomain, 1GB bandwidth
  2. Basic — 150 pages, custom domain, 50GB bandwidth
  3. CMS — 300 pages, 2,000 CMS items, 200GB bandwidth
  4. Business — 800 pages, 10,000 CMS items, 400GB bandwidth
  5. Enterprise — Unlimited pages, advanced security, SLA

Important: Annual billing now saves 22% (previously 30%). Enterprise plans require contacting sales for a custom quote.

Checking Your Plan via API

You can query your current plan programmatically using the Webflow v2 API:

// Fetch current site plan via Webflow API
const response = await fetch(
  'https://api.webflow.com/v2/sites/{site_id}',
  {
    headers: {
      'Authorization': 'Bearer YOUR_TOKEN',
      'accept': 'application/json'
    }
  }
);

const site = await response.json();
console.log(`Plan: ${site.plan.name}`);
console.log(`Bandwidth: ${site.plan.bandwidth}`);

For the full breakdown, visit the updated pricing page. Note that legacy plans have been fully discontinued as of January 2026.

New image
Updated screenshot showing the 2026 Webflow pricing page with the new Enterprise tier and revised bandwidth limits
Reasoning for changes: Webflow updated their pricing structure in January 2026, adding an Enterprise tier and increasing bandwidth across all plans. The previous content referenced outdated plan names, limits, and discount percentages.
Change 2 [INSERT_SECTION_NAME] — [INSERT_PARAGRAPH_LABEL]
Old
[INSERT_OLD_TEXT]
New
[INSERT_NEW_TEXT]
Reasoning for changes: [INSERT_REASON]
Change 3 [INSERT_SECTION_NAME] — [INSERT_PARAGRAPH_LABEL]
Old
[INSERT_OLD_TEXT]
New
[INSERT_NEW_TEXT]
Reasoning for changes: [INSERT_REASON]